home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Aminet 32
/
Aminet 32 (1999)(Schatztruhe)[!][Aug 1999].iso
/
Aminet
/
comm
/
tcp
/
hserv.lha
/
hserv
/
cgi-bin
/
post.rexx
< prev
next >
Wrap
OS/2 REXX Batch file
|
1999-05-24
|
422b
|
23 lines
/* */
parse arg a +11 word
select
when a~="searchText=" then res="bad request"
when word=="" then res="You must give me something to search for!"
when word=="alfie" then res=word": alfier@iol.it"
otherwise res=word "not found"
end
say "Content-Type: text/html";say
say "<HTML>"
say "<HEAD>"
say "<TITLE>post1</TITLE>"
say "</HEAD>"
say "<BODY>"
say "<STRONG><H1>" res "</H1></STRONG>"
say "</BODY>"
say "</HTML>"